STOP YELLING.

I'm always leaving my caps lock on and people think I'm yelling at them when I'm not, so I wrote the inverse of the makeUpperCase.

Named Function

            function makeLowerCase (yelling) {
                return yelling.toLowerCase();
            }

            console.log(makeLowerCase("ASDFGHJKL"));
        

Function Expression

            const makeLowerCase = function(yelling) {
                return yelling.toLowerCase();
            }
            
            console.log(makeLowerCase("ASDFGHJKL"));
            
        

Arrow Function

            const makeLowerCase = yelling => yelling.toLowerCase();
            console.log (makeLowerCase("KIM LEFT HER CAPS LOCK ON AGAIN"))